home *** CD-ROM | disk | FTP | other *** search
/ Point Programming 1 / PPROG1.ISO / pascal / swag / crt.swg / 0020_25-43-50 -no blank!.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1994-02-05  |  560 b   |  22 lines

  1.  
  2. {
  3.  Does anyone have a routine, or more, that will change video mode, 25
  4.  to 43/50 lines, or back WITHOUT clearing the screen as TextMode does?
  5.  I "hate" that <g>, I know OpCrt is supposed to do that, but I cannot
  6.  use OpCrt in this program without doing MAJOR changes to about 20
  7.  other units that use Tp.Crt. I will, but later, fix that, but for now
  8.  could use a routine of this nature.... }
  9.  
  10.  
  11. PROCEDURE SwitchTo43&50; ASSEMBLER;
  12. ASM
  13.    MOV AX,$1112
  14.    INT $10
  15. END;
  16.  
  17. PROCEDURE SwitchTo25; ASSEMBLER;
  18. ASM
  19.    MOV AX,$1114
  20.    INT $10
  21. END;
  22.